Interface java.applet.AppletStub
All Packages This Package Previous Next
Interface java.applet.AppletStub
-
public interface
AppletStub
-
extends Object
Applet stub. This interface is used to implement an
applet viewer. It is not normally used by applet programmers.
-
Version:
-
1.7, 09/16/95
-
Author:
-
Arthur van Hoff
-
appletResize(int, int)
-
Is called when the applet wants to be resized.
-
getAppletContext()
-
Gets a handler to the applet's context.
-
getCodeBase()
-
Gets the base URL.
-
getDocumentBase()
-
Gets the document URL.
-
getParameter(String)
-
Gets a paramater of the applet.
-
isActive()
-
Returns true if the applet is active.
isActive
public abstract boolean isActive()
-
Returns true if the applet is active.
getDocumentBase
public abstract URL getDocumentBase()
-
Gets the document URL.
getCodeBase
public abstract URL getCodeBase()
-
Gets the base URL.
getParameter
public abstract String getParameter(String name)
-
Gets a paramater of the applet.
getAppletContext
public abstract AppletContext getAppletContext()
-
Gets a handler to the applet's context.
appletResize
public abstract void appletResize(int width,
int height)
-
Is called when the applet wants to be resized.
All Packages This Package Previous Next